home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
include
/
stdlib.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-31
|
356b
|
15 lines
#ifndef _UNIX_STDLIB_H
#define _UNIX_STDLIB_H
#include "include:stdlib.h"
#ifndef _ANSI_SOURCE
int setenv(const char *, const char *, int);
#ifndef _POSIX_SOURCE
extern char *optarg; /* getopt(3) external variables */
extern int optind;
extern int opterr;
int getopt (int, char * const *, const char *);
void unsetenv(const char *);
#endif
#endif
#endif